home
***
CD-ROM
|
disk
|
FTP
|
other
***
search
/
Games of Daze
/
Infomagic - Games of Daze (Summer 1995) (Disc 1 of 2).iso
/
x2ftp
/
msdos
/
source
/
swagd-f
/
dos.swg
/
0030_Is there 4DOS installed.pas
< prev
next >
Encoding:
Amiga
Atari
Commodore
DOS
FM Towns/JPY
Macintosh
Macintosh JP
Macintosh to JP
NeXTSTEP
RISC OS/Acorn
Shift JIS
UTF-8
Wrap
Pascal/Delphi Source File
|
1993-09-26
|
424 b
|
19 lines
(*
From: MIKE DICKSON
Subj: IS There 4DOS
*)
FUNCTION Running4DOS : Boolean;
VAR Regs : Registers;
begin
With Regs do
begin
ax := $D44D;
bx := $00;
end;
Intr ($2F, Regs);
if Regs.ax = $44DD then Running4DOS := TRUE
else Running4DOS := FALSE
end;